home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun3.md / devAddrs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-19  |  1.1 KB  |  40 lines

  1. /*
  2.  * devAddrs.h --
  3.  *
  4.  *     Addresses and vector numbers for Sun-3 devices.
  5.  *
  6.  * Copyright 1985, 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun3.md/devAddrs.h,v 9.0 89/09/12 14:58:42 douglis Stable $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _DEVADDRS
  19. #define _DEVADDRS
  20.  
  21. /*
  22.  * Addresses of devices:
  23.  */
  24.  
  25. #define    DEV_KBD_ADDR            0xfe00004
  26. #define DEV_MOUSE_ADDR            0xfe00000
  27. #define DEV_SERIALA_ADDR        0xfe02004
  28. #define DEV_SERIALB_ADDR        0xfe02000
  29. #define    DEV_TIMER_ADDR            0xfe06000
  30. #define    DEV_INTERRUPT_REG_ADDR        0xfe0a000
  31. #define DEV_VIDEO_MEM_ADDR        0xfe20000
  32.  
  33. /*
  34.  * Interrupt vector assignments:
  35.  */
  36.  
  37. #define DEV_UART_VECTOR            30
  38.  
  39. #endif /* _DEVADDRS */
  40.